//Instructions: Take an array of integers (positive or negative or both) and return the sum of the absolute value of each element.

using System;
public class Program 
{
    public static int GetAbsSum(int[] arr) 
    {
      int total = 0;
      foreach(int i in arr)
      {
        total += Math.Abs(i);
      }
      return total;
    }
}
